home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / util-linux.postrm < prev    next >
Encoding:
Text File  |  2009-02-18  |  222 b   |  20 lines

  1. #!/bin/sh
  2.  
  3. case "$1" in
  4.     remove)
  5.         ;;
  6.         purge)
  7.                 update-rc.d hwclock.sh remove >/dev/null
  8.         rm -f /etc/adjtime
  9.                 ;;
  10.     *)
  11.         ;;
  12. esac
  13.  
  14. if [ -x /usr/sbin/update-mime ]; then
  15.     update-mime
  16. fi
  17.  
  18.  
  19.  
  20.